aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog/[event]/[...slug].astro
blob: 2d7c49515bad6a0bb6b2bd5c4d7bcf449105171b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
import { type CollectionEntry, getCollection } from "astro:content";
import BlogPost from "../../../layouts/BlogPost.astro";
import { render } from "astro:content";
import { object } from "astro:schema";

export async function getStaticPaths() {
  const posts = await getCollection("blog");
  const events = Object.keys(
    Object.groupBy(
      posts.map((post) => ({
        id: post.id,
        event: post.id.split("/").at(-2) || "",
      })),
      (post) => post.event
    )
  ).filter((event) => event);

  const postPaths = posts.map((post) => post.id.split("/").at(-1));
  console.log(postPaths);

  const paths = [];
  for (const event of events) {
    for (const post of postPaths) {
      paths.push({
        params: { event, slug: post },
        props: { post: posts.find((p) => p.id.endsWith(post!!)) },
      });
    }
  }

  return paths;
  //   return posts.map((post) => ({
  //     params: { slug: post.id, event: post.id.split("/").at(-2) },
  //     props: { post },
  //   }));
}
// type Props = {
//   post: CollectionEntry<"blog">;
//   siblings: CollectionEntry<"blog">[];
// };
type Props = CollectionEntry<"blog">;

const post = Astro.props;
const { Content } = await render(post.post);
---

<BlogPost {...post.post.data}>
  <Content />
</BlogPost>